home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2000 #4
/
Amiga Plus CD - 2000 - No. 4.iso
/
Tools
/
Emulatoren
/
UAE0.6.4
/
src
/
include
/
debug.h
< prev
next >
Wrap
C/C++ Source or Header
|
2000-05-27
|
405b
|
24 lines
/*
* UAE - The Un*x Amiga Emulator
*
* Debugger
*
* (c) 1995 Bernd Schmidt
*
*/
#define MAX_HIST 10000
extern int firsthist;
extern int lasthist;
extern int debugging;
#ifdef NEED_TO_DEBUG_BADLY
extern struct regstruct history[MAX_HIST];
extern union flagu historyf[MAX_HIST];
#else
extern CPTR history[MAX_HIST];
#endif
extern void debug(void);
extern void activate_debugger(void);